home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacAddict 117
/
MacAddict 117.dmg
/
Software
/
Utilities
/
Tidy Up 1.0.9 (shareware).dmg
/
Tidy Up!
/
Tidy Up!.app
/
Contents
/
Resources
/
MP3Header.pl
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Perl Script
|
2006-02-09
|
291 b
|
16 lines
#!/usr/bin/perl
#
# Copyright (C)2005 Giuseppe Giunto
# Reads data header from MP3 files
# URL: http://www.hyperbolicsoftware.com/
#
use MP3::Info;
$i = -1;
while (($filePath = @ARGV[++$i])) {
my $info = get_mp3info($filePath);
printf "%f#_#%d\n", $info->{SECS}, $info->{BITRATE};
}